home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / comm / term / vltj5867.lha / VLT / rexx / RunBBS.rexx < prev    next >
OS/2 REXX Batch file  |  1994-03-26  |  388b  |  26 lines

  1. /** runbbs.rexx
  2. *
  3. *   Script to run FifoBBS. You probably want to change this.
  4. *   This script relies on WShell.
  5. *
  6. **/
  7. address COMMAND
  8. /*
  9. *   Run VLT as a BBS program
  10. */
  11. "run vlt:vlt +p VTPrefsBBS.dat"
  12. /*
  13. *   Wait until VLT is up
  14. */
  15. do i = 1 to 150
  16.    if ~showlist('p',"VLT") then call delay 25
  17.    else leave i
  18. end
  19. /*
  20. *   Now run the BBS program itself.
  21. */
  22. "run FifoBBS remote"
  23.  
  24. exit(0)
  25.  
  26.